home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr22 / mcalc199.zip / DEMO.BAT next >
DOS Batch File  |  1995-01-23  |  530b  |  22 lines

  1. @echo off
  2. rem demo.bat
  3. rem this file start mcalc as a small demonstration purpose.
  4. ctty nul
  5. if exist mcalc.mc_ del mcalc.mc_
  6. if exist mcalc.mcp ren mcalc.mcp mcalc.mc_
  7. if exist mcalc.in_ del mcalc.in_
  8. if exist mcalc.ini copy mcalc.ini mcalc.in_
  9. set editor=
  10. set fontdir=c:\mcalc
  11. set fontface=t'helv'w8h10b
  12. ctty con
  13. echo macro "demo" >> mcalc.mcp
  14. echo end >> mcalc.mcp
  15. mcalc.exe
  16. ctty nul
  17. del mcalc.ini
  18. if exist mcalc.in_ ren mcalc.in_ mcalc.ini
  19. del mcalc.mcp
  20. if exist mcalc.mc_ ren mcalc.mc_ mcalc.mcp
  21. ctty con
  22.